net/http.http2ClientConn.streams (field)

19 uses

	net/http (current package)
		h2_bundle.go#L7663: 	streams          map[uint32]*http2clientStream // client-initiated
		h2_bundle.go#L8113: 		streams:                     make(map[uint32]*http2clientStream),
		h2_bundle.go#L8234: 	for streamID, cs := range cc.streams {
		h2_bundle.go#L8325: 		StreamsActive:        len(cc.streams) + cc.pendingResets,
		h2_bundle.go#L8388: 	return len(cc.streams) + cc.streamsReserved + cc.pendingResets
		h2_bundle.go#L8436: 	if len(cc.streams) > 0 || cc.streamsReserved > 0 {
		h2_bundle.go#L8455: 	return cc.doNotReuse && len(cc.streams) == 0
		h2_bundle.go#L8473: 			if len(cc.streams) == 0 || cc.closed {
		h2_bundle.go#L8528: 	for _, cs := range cc.streams {
		h2_bundle.go#L9363: 	cc.streams[cs.ID] = cs
		h2_bundle.go#L9371: 	slen := len(cc.streams)
		h2_bundle.go#L9372: 	delete(cc.streams, id)
		h2_bundle.go#L9373: 	if len(cc.streams) != slen-1 {
		h2_bundle.go#L9377: 	if len(cc.streams) == 0 && cc.idleTimer != nil {
		h2_bundle.go#L9386: 	if closeOnIdle && cc.streamsReserved == 0 && len(cc.streams) == 0 {
		h2_bundle.go#L9483: 	for _, cs := range cc.streams {
		h2_bundle.go#L10079: 	cs := rl.cc.streams[id]
		h2_bundle.go#L10163: 			for _, cs := range cc.streams {
		h2_bundle.go#L10513: 	ci.WasIdle = len(cc.streams) == 0 && reused